home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / L_CHSRC_ / CONTEXT.H < prev    next >
Text File  |  1990-01-26  |  813b  |  41 lines

  1. /********************************************************************************
  2.  *    context.h
  3.  *
  4.  *    Header file for context of menus, commands, etc.
  5.  *
  6.  *    Written by Paco Xander Nathan
  7.  *    ⌐1990, Motorola Inc.  Public domain source code.
  8.  ********************************************************************************/
  9.  
  10. #define _H_context
  11.  
  12.  
  13. #include <MenuMgr.h>
  14.  
  15.  
  16. typedef enum {
  17.     appleAbout = 1, appleHelp
  18. } AppleMenuItems;
  19.  
  20.  
  21. typedef enum {
  22.     appleM = 0, fileM, editM, testM, gnosM,
  23.     MAXMENU
  24. } menuRsrcID;
  25.  
  26.  
  27. /* External Data Structures
  28.  */
  29. extern MenuHandle
  30.     menu[];
  31.  
  32.  
  33. /* External Function Prototypes
  34.  */
  35. #ifdef PROTOTYPES
  36. void ContMenuItem (MenuHandle theMenu, short theItem, short flag);
  37. void ContAdjMenu (void);
  38. void ContAdjCurs (Point thePoint, RgnHandle theRgn);
  39. short ContDispatch (long theResult);
  40. #endif
  41.